http://localhost/ej1-helloworld.php
http://localhost/ej2-phpinfo.php	//uso de phpinfo() y date(); estructura de control IF..ELSE
http://localhost/ej3-variables.php	//uso de var_dump(); print "" vs print ''; 
http://localhost/ej4-controlyfuncion.php	//suma de valores en un array; paso por valor y por referencia; uso de "global"
http://localhost/ej5-arrays.php		//arrays: creacin y recorrido ; uso de count(); 
http://localhost/ej6-arrayspredefinidos.php?prueba=1&test=2	//mostrar $_REQUEST,$_SERVER,$_SESSION,$_ENV,$GLOBALS
http://localhost/ej7-estructuras.php	//php y html embebido; estructura IF..ELSE; uso $_SERVER['HTTP_USER_AGENT']; operador de identidad !== (necesario para strpos)
http://localhost/ej8-formularios_get.html
http://localhost/ej8-formularios_post.html
http://localhost/ej8-formularios_request.html
http://localhost/ej9-isset.php
http://localhost/ej10-email.php // http://localhost/ej10-email.html	//Si se prueba el php primero dar el mensaje de error; concatenar cadenas; uso de mail()
http://localhost/ej-include.php
http://localhost/ej11-acceso.php	//header para autenticacin; uso de la sesin para contar nmero de intentos
http://localhost/ej12-sesion.php && http://localhost/ej12-sesion2.php
http://localhost/ej13-cookies.php %% http://localhost/ej13-cookies2.php
/************************************
Diferencia entre cookies y sesiones:
-La sesin se mantiene hasta que se cierra el navegador (o explicitamente se termina la sesin)
-La cookie se mantiene por el tiempo especificado con setcookie; se mantiene aunque se cierre el navegador
*************************************/

http://localhost/ej14-ficheros.html		// PROBAR PRIMERO SIN FICHERO "datosIn.txt"


##Inyeccin de cdigo en formularios
http://localhost/ej8-formularios_request.html
Name: Paco <script language=javascript>alert('hello world!');</script>

##Inyeccin de cdigo a travs del include
http://localhost/ej-include.php			// Mostrar ejemplo mejorado
http://localhost/ej-include.php?file=inyec1.inc
http://localhost/ej-include.php?file=http://localhost/inyec2.inc	// Habilitar php.ini
http://localhost/ej-include.php?file=../conf/httpd.conf


##Ejercicio
http://localhost/ejercicio.php